home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / idlelib / testcode.py < prev    next >
Text File  |  2008-10-05  |  233b  |  32 lines

  1. import string
  2.  
  3. def f():
  4.     a = 0
  5.     b = 1
  6.     c = 2
  7.     d = 3
  8.     e = 4
  9.     g()
  10.  
  11. def g():
  12.     h()
  13.  
  14. def h():
  15.     i()
  16.  
  17. def i():
  18.     j()
  19.  
  20. def j():
  21.     k()
  22.  
  23. def k():
  24.     l()
  25.  
  26. l = lambda: test()
  27.  
  28. def test():
  29.     string.capwords(1)
  30.  
  31. f()
  32.